home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / a_utils / perl / prlbkxmp.lha / ch2 / fun2text < prev    next >
Text File  |  1991-01-07  |  413b  |  20 lines

  1. #!/usr/bin/perl
  2.  
  3. # Initialize @fun2text, a normal array.
  4. # (Use $fun2text[$function] to find the text.)
  5.  
  6. @fun2text = (
  7.     "Update",
  8.     "Acknowledgement",
  9.     "Lightning",
  10.     "Sabeans",
  11.     "Chaldeans",
  12.     "Page Servant",
  13. );
  14.  
  15. # Initialize %text2fun, an associative array, by inversion.
  16. # (Use $text2fun{$text} to find the function code.)
  17.  
  18. $index = 0;
  19. foreach $text (@fun2text) { $text2fun{$text} = $index++; }
  20.